home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 6 / MacMania 6.toast / / Multimedia & Desktop / sk8 / SK8InJava / Code / Collections / ListVisitState.java < prev    next >
Encoding:
Java Source  |  1997-02-27  |  497 b   |  20 lines  |  [TEXT/CWIE]

  1. /*  SK8 © 1997 Apple Computer, Inc.
  2.     This code is protected under the current SK8 License
  3.     See http://sk8.research.apple.com/ for more information
  4.     Apple Research Laboratories
  5. */
  6.  
  7.  
  8. public class listvisitstate extends visitstate {
  9.     public list mList;
  10.     public list mCell;
  11.     
  12.     //constructor
  13.     public listvisitstate (list inList, list inState){
  14.         mList = inList;
  15.         mCell = inState;
  16.     }
  17.     public listvisitstate (list inList) {this(inList, inList);}
  18.     public listvisitstate () {this(null, null);}
  19.  
  20. }